home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / dslibrary.lha / ds.library / include / libraries / dsbase.h < prev   
C/C++ Source or Header  |  1997-02-13  |  611b  |  34 lines

  1. /*
  2. **      $VER: dsbase.h 37.1 (30.01.97)
  3. **
  4. **      definition of DSBase
  5. **
  6. **      (C) Copyright 1997 Markus Hillenbrand
  7. **      All Rights Reserved.
  8. */
  9.  
  10. #ifndef EXAMPLE_EXAMPLEBASE_H
  11. #define EXAMPLE_EXAMPLEBASE_H
  12.  
  13. #ifdef   __MAXON__
  14. #ifndef  EXEC_LIBRARIES_H
  15. #include <exec/libraries.h>
  16. #endif
  17. #else
  18. #ifndef  EXEC_LIBRARIES
  19. #include <exec/libraries.h>
  20. #endif /* EXEC_LIBRARIES_H */
  21. #endif
  22.  
  23. struct DSBase
  24.     {
  25.     struct Library            dsb_LibNode;
  26.     APTR                        dsb_SegList;
  27.     struct ExecBase        *dsb_SysBase;
  28.     struct IntuitionBase    *dsb_IntuitionBase;
  29.     struct GfxBase            *dsb_GfxBase;
  30. };
  31.  
  32. #endif /* EXAMPLE_EXAMPLEBASE_H */
  33.  
  34.